home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Modules / protos / timemodule_protos.h < prev    next >
Text File  |  1998-01-26  |  967b  |  18 lines

  1.  
  2. /* timemodule.c */
  3. static PyObject *time_time ( PyObject *self , PyObject *args );
  4. static PyObject *time_clock ( PyObject *self , PyObject *args );
  5. static PyObject *time_clock ( PyObject *self , PyObject *args );
  6. static PyObject *time_sleep ( PyObject *self , PyObject *args );
  7. static PyObject *time_convert ( time_t when , struct tm *(*function )Py_PROTO ((const time_t *)));
  8. static PyObject *time_gmtime ( PyObject *self , PyObject *args );
  9. static PyObject *time_localtime ( PyObject *self , PyObject *args );
  10. static int gettmarg ( PyObject *args , struct tm *p );
  11. static PyObject *time_strftime ( PyObject *self , PyObject *args );
  12. static PyObject *time_asctime ( PyObject *self , PyObject *args );
  13. static PyObject *time_ctime ( PyObject *self , PyObject *args );
  14. static PyObject *time_mktime ( PyObject *self , PyObject *args );
  15. static void ins ( PyObject *d , char *name , PyObject *v );
  16. static double floattime ( void );
  17. static int floatsleep ( double secs );
  18.